home *** CD-ROM | disk | FTP | other *** search
/ MacUser Mac Bin 28 / MACUSER-MACBIN28A-1996-03.ISO.7z / MACUSER-MACBIN28A-1996-03.ISO / Demo / MachTen 4.0.2 Demo / X Window Software / X11R5 / man / mann / resize.0 < prev    next >
Text File  |  1995-08-14  |  3KB  |  127 lines

  1. NAME
  2.        resize  -  utility to set TERMCAP and terminal settings to
  3.        current window size
  4.  
  5. SYNOPSIS
  6.        resize [-u] [-s [row col]]
  7.  
  8. DESCRIPTION
  9.        Resize prints a shell command for  setting  the  TERM  and
  10.        TERMCAP environment variables to indicate the current size
  11.        of xterm window from which the command is run.   For  this
  12.        output  to take effect, resize must either be evaluated as
  13.        part of the command line (usually done with a shell  alias
  14.        or  function)  or else redirected to a file which can then
  15.        be read in.  From the C shell (usually known as /bin/csh),
  16.        the following alias could be defined in the user's .cshrc:
  17.  
  18.                %  alias rs 'set noglob; `eval resize`'
  19.  
  20.        After resizing the window, the user would type:
  21.  
  22.                %  rs
  23.  
  24.        Users of versions of the Bourne shell  (usually  known  as
  25.        /bin/sh)  that  don't  have command functions will need to
  26.        send the output to a temporary file and the read  it  back
  27.        in with the "." command:
  28.  
  29.                $  resize >/tmp/out
  30.                $  . /tmp/out
  31.  
  32. OPTIONS
  33.        The following options may be used with resize:
  34.  
  35.        -u      This  option  indicates that Bourne shell commands
  36.                should be generated even  if  the  user's  current
  37.                shell isn't /bin/sh.
  38.  
  39.        -c      This option indicates that C shell commands should
  40.                be generated even  if  the  user's  current  shell
  41.                isn't /bin/csh.
  42.  
  43.        -s [rows columns]
  44.                This option indicates that that Sun console escape
  45.                sequences will be  used  instead  of  the  special
  46.                xterm escape code.  If rows and columns are given,
  47.                resize will ask the xterm to resize itself.   How-
  48.                ever,  the  window  manager may choose to disallow
  49.                the change.
  50.  
  51. FILES
  52.        /etc/termcap   for the base termcap entry to modify.
  53.        ~/.cshrc  user's alias for the command.
  54.  
  55. SEE ALSO
  56.        csh(1), tset(1), xterm(1)
  57.  
  58. AUTHORS
  59.        Mark Vandevoorde (MIT-Athena), Edward Moy (Berkeley)
  60.        Copyright (c) 1984, 1985  by  Massachusetts  Institute  of
  61.        Technology.
  62.        See X(1) for a complete copyright notice.
  63.  
  64. BUGS
  65.        The  -u  or  -c  must appear to the left of -s if both are
  66.        specified.
  67.  
  68.        There should be some global notion of display size;  term-
  69.        cap  and  terminfo  need to be rethought in the context of
  70.        window systems.  (Fixed in 4.3BSD, and Ultrix-32 1.2)
  71.  
  72. X Version 11                Release 5                           2
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.